|
| const FrameLib_Parameters::Serial * | getSerialised () override |
| |
| | FrameLib_Expand (FrameLib_Context context, FrameLib_Parameters::Serial *serialisedParameters, FrameLib_Proxy *proxy, unsigned long nStreams) |
| |
| void | setFixedInput (unsigned long idx, double *input, unsigned long size) override |
| |
| const double * | getFixedInput (unsigned long idx, unsigned long *size) override |
| |
| void | blockUpdate (const double *const *ins, double **outs, unsigned long blockSize) override |
| |
| void | reset (double samplingRate, unsigned long maxBlockSize) override |
| |
| std::string | objectInfo (bool verbose) override |
| |
| std::string | inputInfo (unsigned long idx, bool verbose) override |
| |
| std::string | outputInfo (unsigned long idx, bool verbose) override |
| |
| std::string | audioInfo (unsigned long idx, bool verbose) override |
| |
| FrameType | inputType (unsigned long idx) const override |
| |
| FrameType | outputType (unsigned long idx) const override |
| |
| const FrameLib_Parameters * | getParameters () const override |
| |
| void | autoOrderingConnections () override |
| |
| void | clearAutoOrderingConnections () override |
| |
| | FrameLib_Multistream (ObjectType type, FrameLib_Context context, FrameLib_Proxy *proxy, unsigned long nStreams, unsigned long nIns, unsigned long nOuts) |
| |
| | FrameLib_Multistream (ObjectType type, FrameLib_Context context, FrameLib_Proxy *proxy, unsigned long nStreams) |
| |
| virtual | ~FrameLib_Multistream () |
| |
| | FrameLib_Multistream (const FrameLib_Multistream &)=delete |
| |
| FrameLib_Multistream & | operator= (const FrameLib_Multistream &)=delete |
| |
| unsigned long | getNumStreams () |
| |
| | FrameLib_Object (ObjectType type, FrameLib_Context context, FrameLib_Proxy *proxy) |
| |
| virtual | ~FrameLib_Object () |
| |
| ObjectType | getType () const |
| |
| FrameLib_Context | getContext () const |
| |
| FrameLib_Proxy * | getProxy () const |
| |
| unsigned long | getNumIns () const |
| |
| unsigned long | getNumOuts () const |
| |
| unsigned long | getNumAudioIns () const |
| |
| unsigned long | getNumAudioOuts () const |
| |
| unsigned long | getNumAudioChans () const |
| |
| ConnectionResult | addConnection (Connection connection, unsigned long inIdx) |
| |
| void | deleteConnection (unsigned long inIdx) |
| |
| ConnectionResult | addOrderingConnection (Connection connection) |
| |
| void | deleteOrderingConnection (Connection connection) |
| |
| void | clearOrderingConnections () |
| |
| void | clearConnections () |
| |
| ConnectionResult | setInputAlias (Connection alias, unsigned long inIdx) |
| |
| ConnectionResult | setOrderingAlias (FrameLib_Multistream *alias) |
| |
| ConnectionResult | setOutputAlias (Connection alias, unsigned long outIdx) |
| |
| bool | isConnected (unsigned long inIdx) const |
| |
| Connection | getConnection (unsigned long inIdx) const |
| |
| bool | supportsOrderingConnections () const |
| |
| unsigned long | getNumOrderingConnections () const |
| |
| Connection | getOrderingConnection (unsigned long idx) const |
| |
| void | callConnectionUpdate () |
| |
| void | addOutputDependencies (std::vector< U * > &dependencies) |
| |
| void | addOutputDependencies (std::vector< U * > &dependencies, unsigned long outIdx) |
| |
| | FrameLib_Queueable () |
| |
|
| using | Queue = typename FrameLib_Queueable< FrameLib_Multistream >::Queue |
| |
| using | BlockConnection = FrameLib_Object< FrameLib_Block >::Connection |
| |
| using | MultistreamOutput = std::vector< BlockConnection > |
| |
| using | MultistreamConnection = FrameLib_Object::Connection |
| |
| void | setIO (unsigned long nIns, unsigned long nOuts, unsigned long nAudioChans=0) |
| |
| unsigned long | getInputNumChans (unsigned long inIdx) |
| |
| BlockConnection | getInputChan (unsigned long inIdx, unsigned long chan) |
| |
| unsigned long | getOrderingConnectionNumChans (unsigned long idx) |
| |
| BlockConnection | getOrderingConnectionChan (unsigned long idx, unsigned long chan) |
| |
| void | addOutputDependencies (Queue *queue) |
| |
| void | addOutputDependencies (Queue *queue, unsigned long outIdx) |
| |
| Connection | getConnectionInternal (unsigned long inIdx) const |
| |
| Connection | getOrderingConnectionInternal (unsigned long idx) const |
| |
| void | setIO (unsigned long nIns, unsigned long nOuts, unsigned long nAudioChans=0) |
| |
| void | enableOrderingConnections () |
| |
| U * | alloc (unsigned long N) |
| |
| void | dealloc (U *&ptr) |
| |
| void | clearAllocator () |
| |
| FrameLib_LocalAllocator::Storage * | registerStorage (const char *name) |
| |
| void | releaseStorage (FrameLib_LocalAllocator::Storage *&storage) |
| |
| const double * | getEmptyFixedInput (unsigned long idx, unsigned long *size) |
| |
| static const char * | formatInfo (const char *verboseStr, const char *briefStr, bool verbose) |
| |
| static std::string | formatInfo (const char *str, unsigned long idx) |
| |
| static std::string | formatInfo (const char *verboseStr, const char *briefStr, unsigned long idx, bool verbose) |
| |
| static std::string | formatInfo (const char *str, const char *replaceStr) |
| |
| static std::string | formatInfo (const char *verboseStr, const char *briefStr, const char *replaceStr, bool verbose) |
| |
| static std::string | parameterInputInfo (bool verbose) |
| |
| static std::string | numberedString (const char *str, unsigned long idx) |
| |
| static bool | addUniqueItem (std::vector< U > &list, U item) |
| |
| static bool | deleteUniqueItem (std::vector< U > &list, U item) |
| |
| std::vector< MultistreamOutput > | mOutputs |
| |
template<class T>
class FrameLib_Expand< T >
a template class for providing multi-stream support to any FrameLib_Block class.